home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / imagelib / babout.pas < prev    next >
Pascal/Delphi Source File  |  1996-04-08  |  657b  |  40 lines

  1. {Part of Imagelib VCL/DLL Library. 
  2.  
  3. Written by Jan Dekkers and Kevin Adams}
  4.  
  5. unit Babout;
  6.  
  7. interface
  8.  
  9. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  10.      Buttons, ExtCtrls, tmulti, sysutils;
  11.  
  12. type
  13.   TAboutBox = class(TForm)
  14.     Panel1: TPanel;
  15.     OKButton: TBitBtn;
  16.     ProductName: TLabel;
  17.     Version: TLabel;
  18.     Copyright: TLabel;
  19.     MultiImage1: TMultiImage;
  20.     Label1: TLabel;
  21.     Panel2: TPanel;
  22.     Label6: TLabel;
  23.     Label2: TLabel;
  24.   private
  25.     { Private declarations }
  26.   public
  27.     { Public declarations }
  28.   end;
  29.  
  30. var
  31.   AboutBox: TAboutBox;
  32.  
  33. implementation
  34.  
  35. {$R *.DFM}
  36.  
  37.  
  38. end.
  39.  
  40.